home *** CD-ROM | disk | FTP | other *** search
/ Language/OS - Multiplatform Resource Library / LANGUAGE OS.iso / glass / glass.lha / GLASS / widgets / LabelP.h < prev    next >
C/C++ Source or Header  |  1991-02-01  |  3KB  |  100 lines

  1. /*
  2. * $XConsortium: LabelP.h,v 1.24 89/06/08 18:05:01 swick Exp $
  3. */
  4.  
  5.  
  6. /***********************************************************
  7. Copyright 1987, 1988 by Digital Equipment Corporation, Maynard, Massachusetts,
  8. and the Massachusetts Institute of Technology, Cambridge, Massachusetts.
  9.  
  10.                         All Rights Reserved
  11.  
  12. Permission to use, copy, modify, and distribute this software and its 
  13. documentation for any purpose and without fee is hereby granted, 
  14. provided that the above copyright notice appear in all copies and that
  15. both that copyright notice and this permission notice appear in 
  16. supporting documentation, and that the names of Digital or MIT not be
  17. used in advertising or publicity pertaining to distribution of the
  18. software without specific, written prior permission.  
  19.  
  20. DIGITAL DISCLAIMS ALL WARRANTIES WITH REGARD TO THIS SOFTWARE, INCLUDING
  21. ALL IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS, IN NO EVENT SHALL
  22. DIGITAL BE LIABLE FOR ANY SPECIAL, INDIRECT OR CONSEQUENTIAL DAMAGES OR
  23. ANY DAMAGES WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS,
  24. WHETHER IN AN ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION,
  25. ARISING OUT OF OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS
  26. SOFTWARE.
  27.  
  28. ******************************************************************/
  29.  
  30. /* 
  31.  * LabelP.h - Private definitions for Label widget
  32.  * Adapted 9/1/90 M.Seutter & J. van Krieken
  33.  * 
  34.  */
  35.  
  36. #ifndef _XawLabelP_h
  37. #define _XawLabelP_h
  38.  
  39. /***********************************************************************
  40.  *
  41.  * Label Widget Private Data
  42.  *
  43.  ***********************************************************************/
  44.  
  45. /* #include <X11/Xaw/Label.h> */
  46. #include "Label.h"
  47. #include <X11/Xaw/SimpleP.h>
  48.  
  49. /* New fields for the Label widget class record */
  50.  
  51. typedef struct {int foo;} LabelClassPart;
  52.  
  53. /* Full class record declaration */
  54. typedef struct _LabelClassRec {
  55.     CoreClassPart    core_class;
  56.     SimpleClassPart    simple_class;
  57.     LabelClassPart    label_class;
  58. } LabelClassRec;
  59.  
  60. extern LabelClassRec labelClassRec;
  61.  
  62. /* New fields for the Label widget record */
  63. typedef struct {
  64.     /* resources */
  65.     Pixel    foreground;
  66.     XFontStruct    *font;
  67.     char    *label;
  68.     Boolean     image_text;
  69.     XtJustify    justify;
  70.     Dimension    internal_width;
  71.     Dimension    internal_height;
  72.     Pixmap    pixmap;
  73.     Boolean    resize;
  74.  
  75.     /* private state */
  76.     GC        normal_GC;
  77.     GC          gray_GC;
  78.     Pixmap    stipple;
  79.     Position    label_x;
  80.     Position    label_y;
  81.     Dimension    label_width;
  82.     Dimension    label_height;
  83.     Dimension    label_len;
  84. } LabelPart;
  85.  
  86.  
  87. /****************************************************************
  88.  *
  89.  * Full instance record declaration
  90.  *
  91.  ****************************************************************/
  92.  
  93. typedef struct _LabelRec {
  94.     CorePart    core;
  95.     SimplePart    simple;
  96.     LabelPart    label;
  97. } LabelRec;
  98.  
  99. #endif /* _XawLabelP_h */
  100.